home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Mac OS / Apple Guide / Authoring / Documentation / Example Source Files Appdx C / Topic Areas and Topics.src < prev   
Encoding:
Text File  |  1994-12-07  |  3.4 KB  |  87 lines  |  [TEXT/ttxt]

  1.  
  2. # **********ACCESS WINDOW TOPIC AREAS AND TOPICS*********
  3.  
  4. #define topic areas -- when the user chooses the Topics button,
  5. # Apple Guide displays the topic areas defined by <Topic Area> commands
  6. # Apple Guide displays topic areas on the left side of a full access screen
  7. #(topic areas are not displayed on a single list access screen)
  8.  
  9. #Topic areas are often followed by <Header> commands and <Topic> commands
  10. #You use header commands to group one or more topics in the same category
  11. #Headers are not required -- 
  12. # you can choose to have all topics with no groupings by headers
  13. # or you can have headers with each topic grouped with a header
  14. #Note that a topic area MUST have at least one topic associated with it
  15.  
  16. # A header command defines the bold headers that Apple Guide displays
  17. # in the right column when the user selects its associated topic area
  18.  
  19. # A topic command defines a topic that Apple Guide displays
  20. # in the right column; the topic can either appear by itself or
  21. # have a header associated with it. 
  22. #Note that you should either have all single topics or 
  23. #have all topics grouped with headers
  24. #Apple Guide expands and compresses the topics under a header when the user clicks 
  25. #  the triangle to the left of the header
  26.  
  27. #topic areas are displayed in the same order as they appear in the source file
  28.  
  29. #Tip: You can use style or color information in Guide Script commands to make
  30. # your source files easier to read.
  31.  
  32. <Topic Area> "Copying & Pasting"            #topic area displayed on left column of screen
  33.     <Header> "How do I"                                       #header for right column when user 
  34.                                                                                                                  # chooses "Copying & Pasting"
  35.         #topics displayed/expanded/etc with "Copying & Pasting"
  36.         <Topic> "placeholder for topic?" ,"SequenceGeneric"
  37.         <Topic> "another placeholder for topic?" ,"SequenceGeneric"
  38.     
  39. <Topic Area> "Using the Dictionary"    
  40.       <Header> "How do I"            
  41.               <Topic> "add a word to the dictionary?" ,"SequenceAddWords"
  42.               <Topic> "look up a word in the dictionary?" ,"SequenceGeneric"
  43.               <Topic> "create a custom dictionary?" ,"SequenceCreateCustomDictionary"
  44.               <Topic> "add or remove a dictionary?" ,"SequenceGeneric"
  45.       <Header> "Why can't I"        
  46.               <Topic> "open the dictionary?" ,"SequenceGeneric"
  47.       <Header> "Definitions"        
  48.               <Topic> "custom dictionary" ,"SequenceDefnCustomDictionary"
  49.             <Topic> "standard dictionary" ,"SequenceDefnStdDictionary"
  50.  
  51.     <Topic Area> "Fonts"    
  52.       <Header> "How do I"        
  53.             <Topic> "placeholder for topic?" ,"SequenceGeneric"
  54.  
  55.     <Topic Area> "Formatting"    
  56.       <Header> "How do I"        
  57.             <Topic> "placeholder for topic?" ,"SequenceGeneric"
  58.  
  59.     <Topic Area> "Opening & Saving Documents"    
  60.       <Header> "How do I"        
  61.             <Topic> "placeholder for topic?" ,"SequenceGeneric"
  62.  
  63.     <Topic Area> "Printing"    
  64.       <Header> "How do I"        
  65.             <Topic> "placeholder for topic?" ,"SequenceGeneric"
  66.  
  67.     <Topic Area> "Setting Preferences"    
  68.        <Header> "How do I"        
  69.               <Topic> "placeholder for topic?" ,"SequenceGeneric"                                                                        
  70.  
  71.     <Topic Area> "Styles"    
  72.          <Header> "How do I"        
  73.               <Topic> "placeholder for topic?" ,"SequenceGeneric"
  74.  
  75.     <Topic Area> "Scripting"    
  76.          <Header> "How do I"        
  77.               <Topic> "placeholder for topic?" ,"SequenceGeneric"
  78.  
  79.     <Topic Area> "Using the Toolbar"    
  80.       <Header> "How do I"        
  81.              <Topic> "use the tools in the toolbar?" ,"Toolbar"
  82.  
  83. <Topic Area> "Writing Excellent Prose"    
  84.     <Header> "How do I"                        
  85.               <Topic> "placeholder for topic?" ,"SequenceGeneric"
  86.  
  87.